home *** CD-ROM | disk | FTP | other *** search
/ Macromedia Multimedia Showcase 5.1 / Macromedia - Multimedia Showcase 5.1 (Macromedia) (1996).ISO / pc / media / 10000.dir / 00212_Script_212 < prev    next >
Text File  |  1996-03-27  |  423b  |  20 lines

  1. -- generic exitFrame for 10000.dir
  2.  
  3. on exitFrame
  4.   dontPassEvent
  5. end
  6.  
  7. on LocalDelay myObj, duration
  8.   -- delay in a 10000.dir frame script
  9.   if the newDelay of myObj then
  10.     set the newDelay of myObj = FALSE
  11.     set the endDelay of myObj = the ticks + duration*60
  12.   end if
  13.   --
  14.   if the ticks <= the endDelay of myObj then
  15.     go the frame
  16.   else
  17.     set the newDelay of myObj = TRUE
  18.   end if
  19. end Delay
  20.